home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / pc / SNNSV32.ZIP / SNNSv3.2 / xgui / sources / ui_layer.ph < prev    next >
Encoding:
Text File  |  1994-04-25  |  1.2 KB  |  56 lines

  1. /*****************************************************************************
  2.   FILE           : ui_layer.ph
  3.   SHORTNAME      : layer.ph
  4.   SNNS VERSION   : 3.2
  5.  
  6.   PURPOSE        : Header file of correspondent '.c' file
  7.   NOTES          :
  8.  
  9.   AUTHOR         : Tilman Sommer
  10.   DATE           : 31.8.1990
  11.  
  12.   CHANGED BY     :
  13.   IDENTIFICATION : @(#)ui_layer.ph    1.7 3/2/94
  14.   SCCS VERSION   : 1.7
  15.   LAST CHANGE    : 3/2/94
  16.  
  17.              Copyright (c) 1990-1994  SNNS Group, IPVR, Univ. Stuttgart, FRG
  18.              
  19. ******************************************************************************/
  20.  
  21.  
  22. #ifndef _UI_LAYER_DEFINED_
  23. #define _UI_LAYER_DEFINED_
  24.  
  25.  
  26. /* begin global definition section */
  27.  
  28.  
  29. void   ui_xCreateLayerPanel(Widget parent);
  30.  
  31.  
  32. /* widgets of input fields and buttons */
  33. Widget    ui_layerNameWidgets[MAX_NO_LAYERS];
  34. Widget    ui_layerButtonWidgets[MAX_NO_LAYERS];
  35. /* the value indicating the initial state of the buttons */
  36. unsigned short ui_layerStartValue = 0;
  37.  
  38.  
  39. /* end global definition section */
  40.  
  41.  
  42. /* begin private definition section */
  43.  
  44.  
  45. static Widget    ui_layerPanel;  /* shell widget of layer panel */
  46.  
  47.  
  48. /* end private definition section */
  49.  
  50.  
  51. #endif /* _UI_LAYER_DEFINED_ */
  52.  
  53.  
  54. /* end of file */
  55. /* lines: 30 */
  56.